home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / jikes / src / access.h next >
C/C++ Source or Header  |  1999-05-14  |  4KB  |  90 lines

  1. // $Id: access.h,v 1.5 1999/03/09 14:37:15 shields Exp $
  2. //
  3. // This software is subject to the terms of the IBM Jikes Compiler
  4. // License Agreement available at the following URL:
  5. // http://www.ibm.com/research/jikes.
  6. // Copyright (C) 1996, 1998, International Business Machines Corporation
  7. // and others.  All Rights Reserved.
  8. // You must accept the terms of that agreement to use this software.
  9. //
  10.  
  11. #ifndef access_INCLUDED
  12. #define access_INCLUDED
  13.  
  14. #include "config.h"
  15. #include "bool.h"
  16.  
  17. class AccessFlags
  18. {
  19. public:
  20.     bool ACC_PUBLIC()       { return access_flags & 0x0001; }
  21.     bool ACC_PRIVATE()      { return access_flags & 0x0002; }
  22.     bool ACC_PROTECTED()    { return access_flags & 0x0004; }
  23.     bool ACC_STATIC()       { return access_flags & 0x0008; }
  24.     bool ACC_FINAL()        { return access_flags & 0x0010; }
  25.     bool ACC_SUPER()        { return access_flags & 0x0020; }
  26.     bool ACC_SYNCHRONIZED() { return access_flags & 0x0020; }
  27.     bool ACC_VOLATILE()     { return access_flags & 0x0040; }
  28.     bool ACC_TRANSIENT()    { return access_flags & 0x0080; }
  29.     bool ACC_NATIVE()       { return access_flags & 0x0100; }
  30.     bool ACC_INTERFACE()    { return access_flags & 0x0200; }
  31.     bool ACC_ABSTRACT()     { return access_flags & 0x0400; }
  32.     bool ACC_STRICTFP()     { return access_flags & 0x0800; }
  33.  
  34.     void SetACC_PUBLIC()       { access_flags |= 0x0001; }
  35.     void SetACC_PRIVATE()      { access_flags |= 0x0002; }
  36.     void SetACC_PROTECTED()    { access_flags |= 0x0004; }
  37.     void SetACC_STATIC()       { access_flags |= 0x0008; }
  38.     void SetACC_FINAL()        { access_flags |= 0x0010; }
  39.     void SetACC_SUPER()        { access_flags |= 0x0020; }
  40.     void SetACC_SYNCHRONIZED() { access_flags |= 0x0020; }
  41.     void SetACC_VOLATILE()     { access_flags |= 0x0040; }
  42.     void SetACC_TRANSIENT()    { access_flags |= 0x0080; }
  43.     void SetACC_NATIVE()       { access_flags |= 0x0100; }
  44.     void SetACC_INTERFACE()    { access_flags |= 0x0200; }
  45.     void SetACC_ABSTRACT()     { access_flags |= 0x0400; }
  46.     void SetACC_STRICTFP()     { access_flags |= 0x0800; }
  47.  
  48.     void ResetACC_PUBLIC()       { access_flags &= (~ 0x0001); }
  49.     void ResetACC_PRIVATE()      { access_flags &= (~ 0x0002); }
  50.     void ResetACC_PROTECTED()    { access_flags &= (~ 0x0004); }
  51.     void ResetACC_STATIC()       { access_flags &= (~ 0x0008); }
  52.     void ResetACC_FINAL()        { access_flags &= (~ 0x0010); }
  53.     void ResetACC_SUPER()        { access_flags &= (~ 0x0020); }
  54.     void ResetACC_SYNCHRONIZED() { access_flags &= (~ 0x0020); }
  55.     void ResetACC_VOLATILE()     { access_flags &= (~ 0x0040); }
  56.     void ResetACC_TRANSIENT()    { access_flags &= (~ 0x0080); }
  57.     void ResetACC_NATIVE()       { access_flags &= (~ 0x0100); }
  58.     void ResetACC_INTERFACE()    { access_flags &= (~ 0x0200); }
  59.     void ResetACC_ABSTRACT()     { access_flags &= (~ 0x0400); }
  60.     void ResetACC_STRICTFP()     { access_flags &= (~ 0x0800); }
  61.  
  62.     u2 access_flags;
  63.  
  64.     AccessFlags() : access_flags(0) {}
  65.     AccessFlags(u2& _access_flags) : access_flags(_access_flags) {}
  66.  
  67. #ifdef TEST
  68.     void Print()
  69.     {
  70.         cout << " access_flags: ";
  71.         if (ACC_PUBLIC())       cout << " public";
  72.         if (ACC_PRIVATE())      cout << " private";
  73.         if (ACC_PROTECTED())    cout << " protected";
  74.         if (ACC_STATIC())       cout << " static";
  75.         if (ACC_FINAL())        cout << " final";
  76.         // super and synchronized use the same bit!
  77.         if (ACC_SYNCHRONIZED()) cout << " super_or_synchronized";
  78.         if (ACC_VOLATILE())     cout << " volatile";
  79.         if (ACC_TRANSIENT())    cout << " transient";
  80.         if (ACC_NATIVE())       cout << " native";
  81.         if (ACC_INTERFACE())    cout << " interface";
  82.         if (ACC_ABSTRACT())     cout << " abstract";
  83.         if (ACC_STRICTFP())     cout << " strictfp";
  84.         cout << "\n";
  85.     }
  86. #endif
  87. };
  88.  
  89. #endif
  90.